home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / pathed3 / PATHED3.ZIP / Source / SolutionsUnlimitedPathEd.dfm / SolutionsUnlimitedPathEd.txt
Encoding:
Text File  |  1997-12-28  |  2.9 KB  |  144 lines

  1. object frmSetPath: TfrmSetPath
  2.   Left = 276
  3.   Top = 127
  4.   Width = 391
  5.   Height = 253
  6.   BorderStyle = bsSizeToolWin
  7.   Caption = 'Library Search Path Editor'
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OnClose = FormClose
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 298
  19.     Top = 0
  20.     Width = 85
  21.     Height = 207
  22.     Align = alRight
  23.     BevelOuter = bvNone
  24.     TabOrder = 0
  25.     object btnAdd: TButton
  26.       Left = 5
  27.       Top = 47
  28.       Width = 75
  29.       Height = 25
  30.       Caption = '&Add'
  31.       TabOrder = 0
  32.       OnClick = btnAddClick
  33.     end
  34.     object btnRemove: TButton
  35.       Left = 5
  36.       Top = 77
  37.       Width = 75
  38.       Height = 25
  39.       Caption = '&Remove'
  40.       TabOrder = 1
  41.       OnClick = btnRemoveClick
  42.     end
  43.     object btnUp: TButton
  44.       Left = 5
  45.       Top = 107
  46.       Width = 75
  47.       Height = 25
  48.       Caption = 'Move &Up'
  49.       TabOrder = 2
  50.       OnClick = btnUpClick
  51.     end
  52.     object btnDown: TButton
  53.       Left = 5
  54.       Top = 137
  55.       Width = 75
  56.       Height = 25
  57.       Caption = 'Move &Down'
  58.       TabOrder = 3
  59.       OnClick = btnDownClick
  60.     end
  61.     object btnOptions: TButton
  62.       Left = 5
  63.       Top = 177
  64.       Width = 75
  65.       Height = 25
  66.       Caption = '&Options'
  67.       TabOrder = 4
  68.       OnClick = btnOptionsClick
  69.     end
  70.     object btnClose: TButton
  71.       Left = 5
  72.       Top = 7
  73.       Width = 75
  74.       Height = 25
  75.       Caption = '&Close'
  76.       ModalResult = 1
  77.       TabOrder = 5
  78.     end
  79.   end
  80.   object StatusBar1: TStatusBar
  81.     Left = 0
  82.     Top = 207
  83.     Width = 383
  84.     Height = 19
  85.     Panels = <>
  86.     SimplePanel = True
  87.   end
  88.   object pnlList: TPanel
  89.     Left = 0
  90.     Top = 0
  91.     Width = 298
  92.     Height = 207
  93.     Align = alClient
  94.     BevelOuter = bvNone
  95.     BorderWidth = 5
  96.     TabOrder = 2
  97.     object TabControl1: TTabControl
  98.       Left = 5
  99.       Top = 5
  100.       Width = 288
  101.       Height = 197
  102.       Align = alClient
  103.       HotTrack = True
  104.       TabOrder = 0
  105.       object lstPath: TCheckListBox
  106.         Left = 4
  107.         Top = 6
  108.         Width = 280
  109.         Height = 187
  110.         Align = alClient
  111.         ItemHeight = 13
  112.         PopupMenu = PopupMenu1
  113.         TabOrder = 0
  114.       end
  115.     end
  116.   end
  117.   object FormStorage: TFormStorage
  118.     IniFileName = '\Software\Borland\Delphi\3.0\Solutions'
  119.     IniSection = 'PathEditor'
  120.     MinMaxInfo.MinTrackHeight = 253
  121.     MinMaxInfo.MinTrackWidth = 112
  122.     Options = [fpState, fpPosition, fpActiveControl]
  123.     UseRegistry = True
  124.     OnRestorePlacement = FormStorageRestorePlacement
  125.     Left = 209
  126.     Top = 24
  127.   end
  128.   object PopupMenu1: TPopupMenu
  129.     Left = 85
  130.     Top = 61
  131.     object Sort1: TMenuItem
  132.       Caption = 'Sort'
  133.       OnClick = Sort1Click
  134.     end
  135.     object N1: TMenuItem
  136.       Caption = '-'
  137.     end
  138.     object About1: TMenuItem
  139.       Caption = 'About'
  140.       OnClick = About1Click
  141.     end
  142.   end
  143. end
  144.